home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / setrlimit.c < prev    next >
C/C++ Source or Header  |  1988-06-19  |  672b  |  39 lines

  1. /* 
  2.  * setrlimit.c --
  3.  *
  4.  *    Procedure to fake Unix setrlimit call.
  5.  *
  6.  * Copyright (C) 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: setrlimit.c,v 1.1 88/06/19 14:31:58 ouster Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sprite.h"
  15. #include "compatInt.h"
  16.  
  17.  
  18. /*
  19.  *----------------------------------------------------------------------
  20.  *
  21.  * setrlimit --
  22.  *
  23.  *    Fake the setrlimit call by always returning success.
  24.  *
  25.  * Results:
  26.  *    None.
  27.  *
  28.  * Side effects:
  29.  *    None.
  30.  *
  31.  *----------------------------------------------------------------------
  32.  */
  33.  
  34. int
  35. setrlimit()
  36. {
  37.     return(UNIX_SUCCESS);
  38. }
  39.